home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 24 / CU Amiga Magazine's Super CD-ROM 24 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-07].iso / CUCD / Utilities / vim-5.1 / src / version.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-04-06  |  1.0 KB  |  33 lines

  1. /* vi:set ts=8 sts=4 sw=4:
  2.  *
  3.  * VIM - Vi IMproved        by Bram Moolenaar
  4.  *
  5.  * Do ":help uganda"  in Vim to read copying and usage conditions.
  6.  * Do ":help credits" in Vim to see a list of people who contributed.
  7.  */
  8.  
  9. /*
  10.  * Define the version number, name, etc.
  11.  * Be careful, keep the numbers in sync!
  12.  * This could be produced by a program, but it doesn't change very often.
  13.  */
  14.  
  15. #define VIM_VERSION_MAJOR         5
  16. #define VIM_VERSION_MAJOR_STR        "5"
  17. #define VIM_VERSION_MINOR         1
  18. #define VIM_VERSION_MINOR_STR        "1"
  19. #define VIM_VERSION_BUILD         28
  20. #define VIM_VERSION_BUILD_STR        "28"
  21. #define VIM_VERSION_PATCHLEVEL         0
  22. #define VIM_VERSION_PATCHLEVEL_STR    "0"
  23.  
  24. /*
  25.  * VIM_VERSION_SHORT is copied into the swap file (max. length is 6 chars).
  26.  * VIM_VERSION_MEDIUM is used for the startup-screen.
  27.  * VIM_VERSION_LONG is used for the ":version" command and "Vim -h".
  28.  */
  29. #define VIM_VERSION_SHORT    "5.1"
  30. #define VIM_VERSION_MEDIUM    "5.1"
  31. #define VIM_VERSION_LONG    "VIM - Vi IMproved 5.1 (1998 Apr 7)"
  32. #define VIM_VERSION_LONG_DATE    "VIM - Vi IMproved 5.1 (1998 Apr 7, compiled "
  33.